/* $Id$ */
function openhtml(theURL)
{
 var x = null;
 if(theURL)
 {
 x = window.open(helpLink+theURL, 'delugedoc');
 }
 else
 {
 x = window.open('http://zohocreator.wiki.zoho.com/Deluge-Reference---Overview.html', 'delugedoc');
 }
 x.moveTo(0,0);
 x.resizeTo(screen.width,screen.height);
 x.focus();
} 

